The colon is a bit unneccessary and looks a bit ugly
authorWilliam Jon McCann <jmccann@redhat.com>
Thu, 18 Nov 2010 22:45:47 +0000 (17:45 -0500)
committerCosimo Cecchi <cosimoc@gnome.org>
Tue, 23 Nov 2010 15:51:40 +0000 (16:51 +0100)
gtk/gtkopenwithdialog.c

index c3b069cf5d6735d4d242b33ff3628abe7fe0098e..acc0bbf7c3e8e9a2a8daabd89638abda2de3fc7f 100644 (file)
@@ -249,12 +249,12 @@ set_dialog_properties (GtkOpenWithDialog *self)
   if (name != NULL)
     {
       /* Translators: %s is a filename */
-      label = g_strdup_printf (_("Select an application to open \"%s\":"), name);
+      label = g_strdup_printf (_("Select an application to open \"%s\""), name);
     }
   else
     {
       /* Translators: %s is a file type description */
-      label = g_strdup_printf (_("Select an application for \"%s\" files:"),
+      label = g_strdup_printf (_("Select an application for \"%s\" files"),
                               g_content_type_is_unknown (self->priv->content_type) ?
                               self->priv->content_type : description);
     }